home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 June / SGI Freeware 1998 June.iso / dist / fw_make.idb / usr / freeware / info / make.info-6.z / make.info-6 (.txt)
GNU Info File  |  1998-05-21  |  49KB  |  858 lines

  1. This is Info file make.info, produced by Makeinfo version 1.67 from the
  2. input file make.texinfo.
  3. INFO-DIR-SECTION The GNU make utility
  4. START-INFO-DIR-ENTRY
  5. * GNU make: (make.info).           The GNU make utility.
  6. END-INFO-DIR-ENTRY
  7.    This file documents the GNU Make utility, which determines
  8. automatically which pieces of a large program need to be recompiled,
  9. and issues the commands to recompile them.
  10.    This is Edition 0.51, last updated 26 Aug 1997, of `The GNU Make
  11. Manual', for `make', Version 3.76 Beta.
  12.    Copyright (C) 1988, '89, '90, '91, '92, '93, '94, '95, '96, '97     Free
  13. Software Foundation, Inc.
  14.    Permission is granted to make and distribute verbatim copies of this
  15. manual provided the copyright notice and this permission notice are
  16. preserved on all copies.
  17.    Permission is granted to copy and distribute modified versions of
  18. this manual under the conditions for verbatim copying, provided that
  19. the entire resulting derived work is distributed under the terms of a
  20. permission notice identical to this one.
  21.    Permission is granted to copy and distribute translations of this
  22. manual into another language, under the above conditions for modified
  23. versions, except that this permission notice may be stated in a
  24. translation approved by the Free Software Foundation.
  25. File: make.info,  Node: Automatic,  Next: Pattern Match,  Prev: Pattern Examples,  Up: Pattern Rules
  26. Automatic Variables
  27. -------------------
  28.    Suppose you are writing a pattern rule to compile a `.c' file into a
  29. `.o' file: how do you write the `cc' command so that it operates on the
  30. right source file name?  You cannot write the name in the command,
  31. because the name is different each time the implicit rule is applied.
  32.    What you do is use a special feature of `make', the "automatic
  33. variables".  These variables have values computed afresh for each rule
  34. that is executed, based on the target and dependencies of the rule.  In
  35. this example, you would use `$@' for the object file name and `$<' for
  36. the source file name.
  37.    Here is a table of automatic variables:
  38.      The file name of the target of the rule.  If the target is an
  39.      archive member, then `$@' is the name of the archive file.  In a
  40.      pattern rule that has multiple targets (*note Introduction to
  41.      Pattern Rules: Pattern Intro.), `$@' is the name of whichever
  42.      target caused the rule's commands to be run.
  43.      The target member name, when the target is an archive member.
  44.      *Note Archives::.  For example, if the target is `foo.a(bar.o)'
  45.      then `$%' is `bar.o' and `$@' is `foo.a'.  `$%' is empty when the
  46.      target is not an archive member.
  47.      The name of the first dependency.  If the target got its commands
  48.      from an implicit rule, this will be the first dependency added by
  49.      the implicit rule (*note Implicit Rules::.).
  50.      The names of all the dependencies that are newer than the target,
  51.      with spaces between them.  For dependencies which are archive
  52.      members, only the member named is used (*note Archives::.).
  53.      The names of all the dependencies, with spaces between them.  For
  54.      dependencies which are archive members, only the member named is
  55.      used (*note Archives::.).  A target has only one dependency on
  56.      each other file it depends on, no matter how many times each file
  57.      is listed as a dependency.  So if you list a dependency more than
  58.      once for a target, the value of `$^' contains just one copy of the
  59.      name.
  60.      This is like `$^', but dependencies listed more than once are
  61.      duplicated in the order they were listed in the makefile.  This is
  62.      primarily useful for use in linking commands where it is
  63.      meaningful to repeat library file names in a particular order.
  64.      The stem with which an implicit rule matches (*note How Patterns
  65.      Match: Pattern Match.).  If the target is `dir/a.foo.b' and the
  66.      target pattern is `a.%.b' then the stem is `dir/foo'.  The stem is
  67.      useful for constructing names of related files.
  68.      In a static pattern rule, the stem is part of the file name that
  69.      matched the `%' in the target pattern.
  70.      In an explicit rule, there is no stem; so `$*' cannot be determined
  71.      in that way.  Instead, if the target name ends with a recognized
  72.      suffix (*note Old-Fashioned Suffix Rules: Suffix Rules.), `$*' is
  73.      set to the target name minus the suffix.  For example, if the
  74.      target name is `foo.c', then `$*' is set to `foo', since `.c' is a
  75.      suffix.  GNU `make' does this bizarre thing only for compatibility
  76.      with other implementations of `make'.  You should generally avoid
  77.      using `$*' except in implicit rules or static pattern rules.
  78.      If the target name in an explicit rule does not end with a
  79.      recognized suffix, `$*' is set to the empty string for that rule.
  80.    `$?' is useful even in explicit rules when you wish to operate on
  81. only the dependencies that have changed.  For example, suppose that an
  82. archive named `lib' is supposed to contain copies of several object
  83. files.  This rule copies just the changed object files into the archive:
  84.      lib: foo.o bar.o lose.o win.o
  85.              ar r lib $?
  86.    Of the variables listed above, four have values that are single file
  87. names, and two have values that are lists of file names.  These six have
  88. variants that get just the file's directory name or just the file name
  89. within the directory.  The variant variables' names are formed by
  90. appending `D' or `F', respectively.  These variants are semi-obsolete
  91. in GNU `make' since the functions `dir' and `notdir' can be used to get
  92. a similar effect (*note Functions for File Names: File Name
  93. Functions.).  Note, however, that the `F' variants all omit the
  94. trailing slash which always appears in the output of the `dir'
  95. function.  Here is a table of the variants:
  96. `$(@D)'
  97.      The directory part of the file name of the target, with the
  98.      trailing slash removed.  If the value of `$@' is `dir/foo.o' then
  99.      `$(@D)' is `dir'.  This value is `.' if `$@' does not contain a
  100.      slash.
  101. `$(@F)'
  102.      The file-within-directory part of the file name of the target.  If
  103.      the value of `$@' is `dir/foo.o' then `$(@F)' is `foo.o'.  `$(@F)'
  104.      is equivalent to `$(notdir $@)'.
  105. `$(*D)'
  106. `$(*F)'
  107.      The directory part and the file-within-directory part of the stem;
  108.      `dir' and `foo' in this example.
  109. `$(%D)'
  110. `$(%F)'
  111.      The directory part and the file-within-directory part of the target
  112.      archive member name.  This makes sense only for archive member
  113.      targets of the form `ARCHIVE(MEMBER)' and is useful only when
  114.      MEMBER may contain a directory name.  (*Note Archive Members as
  115.      Targets: Archive Members.)
  116. `$(<D)'
  117. `$(<F)'
  118.      The directory part and the file-within-directory part of the first
  119.      dependency.
  120. `$(^D)'
  121. `$(^F)'
  122.      Lists of the directory parts and the file-within-directory parts
  123.      of all dependencies.
  124. `$(?D)'
  125. `$(?F)'
  126.      Lists of the directory parts and the file-within-directory parts of
  127.      all dependencies that are newer than the target.
  128.    Note that we use a special stylistic convention when we talk about
  129. these automatic variables; we write "the value of `$<'", rather than
  130. "the variable `<'" as we would write for ordinary variables such as
  131. `objects' and `CFLAGS'.  We think this convention looks more natural in
  132. this special case.  Please do not assume it has a deep significance;
  133. `$<' refers to the variable named `<' just as `$(CFLAGS)' refers to the
  134. variable named `CFLAGS'.  You could just as well use `$(<)' in place of
  135. `$<'.
  136. File: make.info,  Node: Pattern Match,  Next: Match-Anything Rules,  Prev: Automatic,  Up: Pattern Rules
  137. How Patterns Match
  138. ------------------
  139.    A target pattern is composed of a `%' between a prefix and a suffix,
  140. either or both of which may be empty.  The pattern matches a file name
  141. only if the file name starts with the prefix and ends with the suffix,
  142. without overlap.  The text between the prefix and the suffix is called
  143. the "stem".  Thus, when the pattern `%.o' matches the file name
  144. `test.o', the stem is `test'.  The pattern rule dependencies are turned
  145. into actual file names by substituting the stem for the character `%'.
  146. Thus, if in the same example one of the dependencies is written as
  147. `%.c', it expands to `test.c'.
  148.    When the target pattern does not contain a slash (and it usually does
  149. not), directory names in the file names are removed from the file name
  150. before it is compared with the target prefix and suffix.  After the
  151. comparison of the file name to the target pattern, the directory names,
  152. along with the slash that ends them, are added on to the dependency
  153. file names generated from the pattern rule's dependency patterns and
  154. the file name. The directories are ignored only for the purpose of
  155. finding an implicit rule to use, not in the application of that rule.
  156. Thus, `e%t' matches the file name `src/eat', with `src/a' as the stem.
  157. When dependencies are turned into file names, the directories from the
  158. stem are added at the front, while the rest of the stem is substituted
  159. for the `%'.  The stem `src/a' with a dependency pattern `c%r' gives
  160. the file name `src/car'.
  161. File: make.info,  Node: Match-Anything Rules,  Next: Canceling Rules,  Prev: Pattern Match,  Up: Pattern Rules
  162. Match-Anything Pattern Rules
  163. ----------------------------
  164.    When a pattern rule's target is just `%', it matches any file name
  165. whatever.  We call these rules "match-anything" rules.  They are very
  166. useful, but it can take a lot of time for `make' to think about them,
  167. because it must consider every such rule for each file name listed
  168. either as a target or as a dependency.
  169.    Suppose the makefile mentions `foo.c'.  For this target, `make'
  170. would have to consider making it by linking an object file `foo.c.o',
  171. or by C compilation-and-linking in one step from `foo.c.c', or by
  172. Pascal compilation-and-linking from `foo.c.p', and many other
  173. possibilities.
  174.    We know these possibilities are ridiculous since `foo.c' is a C
  175. source file, not an executable.  If `make' did consider these
  176. possibilities, it would ultimately reject them, because files such as
  177. `foo.c.o' and `foo.c.p' would not exist.  But these possibilities are so
  178. numerous that `make' would run very slowly if it had to consider them.
  179.    To gain speed, we have put various constraints on the way `make'
  180. considers match-anything rules.  There are two different constraints
  181. that can be applied, and each time you define a match-anything rule you
  182. must choose one or the other for that rule.
  183.    One choice is to mark the match-anything rule as "terminal" by
  184. defining it with a double colon.  When a rule is terminal, it does not
  185. apply unless its dependencies actually exist.  Dependencies that could
  186. be made with other implicit rules are not good enough.  In other words,
  187. no further chaining is allowed beyond a terminal rule.
  188.    For example, the built-in implicit rules for extracting sources from
  189. RCS and SCCS files are terminal; as a result, if the file `foo.c,v' does
  190. not exist, `make' will not even consider trying to make it as an
  191. intermediate file from `foo.c,v.o' or from `RCS/SCCS/s.foo.c,v'.  RCS
  192. and SCCS files are generally ultimate source files, which should not be
  193. remade from any other files; therefore, `make' can save time by not
  194. looking for ways to remake them.
  195.    If you do not mark the match-anything rule as terminal, then it is
  196. nonterminal.  A nonterminal match-anything rule cannot apply to a file
  197. name that indicates a specific type of data.  A file name indicates a
  198. specific type of data if some non-match-anything implicit rule target
  199. matches it.
  200.    For example, the file name `foo.c' matches the target for the pattern
  201. rule `%.c : %.y' (the rule to run Yacc).  Regardless of whether this
  202. rule is actually applicable (which happens only if there is a file
  203. `foo.y'), the fact that its target matches is enough to prevent
  204. consideration of any nonterminal match-anything rules for the file
  205. `foo.c'.  Thus, `make' will not even consider trying to make `foo.c' as
  206. an executable file from `foo.c.o', `foo.c.c', `foo.c.p', etc.
  207.    The motivation for this constraint is that nonterminal match-anything
  208. rules are used for making files containing specific types of data (such
  209. as executable files) and a file name with a recognized suffix indicates
  210. some other specific type of data (such as a C source file).
  211.    Special built-in dummy pattern rules are provided solely to recognize
  212. certain file names so that nonterminal match-anything rules will not be
  213. considered.  These dummy rules have no dependencies and no commands, and
  214. they are ignored for all other purposes.  For example, the built-in
  215. implicit rule
  216.      %.p :
  217. exists to make sure that Pascal source files such as `foo.p' match a
  218. specific target pattern and thereby prevent time from being wasted
  219. looking for `foo.p.o' or `foo.p.c'.
  220.    Dummy pattern rules such as the one for `%.p' are made for every
  221. suffix listed as valid for use in suffix rules (*note Old-Fashioned
  222. Suffix Rules: Suffix Rules.).
  223. File: make.info,  Node: Canceling Rules,  Prev: Match-Anything Rules,  Up: Pattern Rules
  224. Canceling Implicit Rules
  225. ------------------------
  226.    You can override a built-in implicit rule (or one you have defined
  227. yourself) by defining a new pattern rule with the same target and
  228. dependencies, but different commands.  When the new rule is defined, the
  229. built-in one is replaced.  The new rule's position in the sequence of
  230. implicit rules is determined by where you write the new rule.
  231.    You can cancel a built-in implicit rule by defining a pattern rule
  232. with the same target and dependencies, but no commands.  For example,
  233. the following would cancel the rule that runs the assembler:
  234.      %.o : %.s
  235. File: make.info,  Node: Last Resort,  Next: Suffix Rules,  Prev: Pattern Rules,  Up: Implicit Rules
  236. Defining Last-Resort Default Rules
  237. ==================================
  238.    You can define a last-resort implicit rule by writing a terminal
  239. match-anything pattern rule with no dependencies (*note Match-Anything
  240. Rules::.).  This is just like any other pattern rule; the only thing
  241. special about it is that it will match any target.  So such a rule's
  242. commands are used for all targets and dependencies that have no commands
  243. of their own and for which no other implicit rule applies.
  244.    For example, when testing a makefile, you might not care if the
  245. source files contain real data, only that they exist.  Then you might
  246. do this:
  247.      %::
  248.              touch $@
  249. to cause all the source files needed (as dependencies) to be created
  250. automatically.
  251.    You can instead define commands to be used for targets for which
  252. there are no rules at all, even ones which don't specify commands.  You
  253. do this by writing a rule for the target `.DEFAULT'.  Such a rule's
  254. commands are used for all dependencies which do not appear as targets in
  255. any explicit rule, and for which no implicit rule applies.  Naturally,
  256. there is no `.DEFAULT' rule unless you write one.
  257.    If you use `.DEFAULT' with no commands or dependencies:
  258.      .DEFAULT:
  259. the commands previously stored for `.DEFAULT' are cleared.  Then `make'
  260. acts as if you had never defined `.DEFAULT' at all.
  261.    If you do not want a target to get the commands from a match-anything
  262. pattern rule or `.DEFAULT', but you also do not want any commands to be
  263. run for the target, you can give it empty commands (*note Defining
  264. Empty Commands: Empty Commands.).
  265.    You can use a last-resort rule to override part of another makefile.
  266. *Note Overriding Part of Another Makefile: Overriding Makefiles.
  267. File: make.info,  Node: Suffix Rules,  Next: Implicit Rule Search,  Prev: Last Resort,  Up: Implicit Rules
  268. Old-Fashioned Suffix Rules
  269. ==========================
  270.    "Suffix rules" are the old-fashioned way of defining implicit rules
  271. for `make'.  Suffix rules are obsolete because pattern rules are more
  272. general and clearer.  They are supported in GNU `make' for
  273. compatibility with old makefiles.  They come in two kinds:
  274. "double-suffix" and "single-suffix".
  275.    A double-suffix rule is defined by a pair of suffixes: the target
  276. suffix and the source suffix.  It matches any file whose name ends with
  277. the target suffix.  The corresponding implicit dependency is made by
  278. replacing the target suffix with the source suffix in the file name.  A
  279. two-suffix rule whose target and source suffixes are `.o' and `.c' is
  280. equivalent to the pattern rule `%.o : %.c'.
  281.    A single-suffix rule is defined by a single suffix, which is the
  282. source suffix.  It matches any file name, and the corresponding implicit
  283. dependency name is made by appending the source suffix.  A single-suffix
  284. rule whose source suffix is `.c' is equivalent to the pattern rule `% :
  285. %.c'.
  286.    Suffix rule definitions are recognized by comparing each rule's
  287. target against a defined list of known suffixes.  When `make' sees a
  288. rule whose target is a known suffix, this rule is considered a
  289. single-suffix rule.  When `make' sees a rule whose target is two known
  290. suffixes concatenated, this rule is taken as a double-suffix rule.
  291.    For example, `.c' and `.o' are both on the default list of known
  292. suffixes.  Therefore, if you define a rule whose target is `.c.o',
  293. `make' takes it to be a double-suffix rule with source suffix `.c' and
  294. target suffix `.o'.  Here is the old-fashioned way to define the rule
  295. for compiling a C source file:
  296.      .c.o:
  297.              $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@ $<
  298.    Suffix rules cannot have any dependencies of their own.  If they
  299. have any, they are treated as normal files with funny names, not as
  300. suffix rules.  Thus, the rule:
  301.      .c.o: foo.h
  302.              $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@ $<
  303. tells how to make the file `.c.o' from the dependency file `foo.h', and
  304. is not at all like the pattern rule:
  305.      %.o: %.c foo.h
  306.              $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@ $<
  307. which tells how to make `.o' files from `.c' files, and makes all `.o'
  308. files using this pattern rule also depend on `foo.h'.
  309.    Suffix rules with no commands are also meaningless.  They do not
  310. remove previous rules as do pattern rules with no commands (*note
  311. Canceling Implicit Rules: Canceling Rules.).  They simply enter the
  312. suffix or pair of suffixes concatenated as a target in the data base.
  313.    The known suffixes are simply the names of the dependencies of the
  314. special target `.SUFFIXES'.  You can add your own suffixes by writing a
  315. rule for `.SUFFIXES' that adds more dependencies, as in:
  316.      .SUFFIXES: .hack .win
  317. which adds `.hack' and `.win' to the end of the list of suffixes.
  318.    If you wish to eliminate the default known suffixes instead of just
  319. adding to them, write a rule for `.SUFFIXES' with no dependencies.  By
  320. special dispensation, this eliminates all existing dependencies of
  321. `.SUFFIXES'.  You can then write another rule to add the suffixes you
  322. want.  For example,
  323.      .SUFFIXES:            # Delete the default suffixes
  324.      .SUFFIXES: .c .o .h   # Define our suffix list
  325.    The `-r' or `--no-builtin-rules' flag causes the default list of
  326. suffixes to be empty.
  327.    The variable `SUFFIXES' is defined to the default list of suffixes
  328. before `make' reads any makefiles.  You can change the list of suffixes
  329. with a rule for the special target `.SUFFIXES', but that does not alter
  330. this variable.
  331. File: make.info,  Node: Implicit Rule Search,  Prev: Suffix Rules,  Up: Implicit Rules
  332. Implicit Rule Search Algorithm
  333. ==============================
  334.    Here is the procedure `make' uses for searching for an implicit rule
  335. for a target T.  This procedure is followed for each double-colon rule
  336. with no commands, for each target of ordinary rules none of which have
  337. commands, and for each dependency that is not the target of any rule.
  338. It is also followed recursively for dependencies that come from implicit
  339. rules, in the search for a chain of rules.
  340.    Suffix rules are not mentioned in this algorithm because suffix
  341. rules are converted to equivalent pattern rules once the makefiles have
  342. been read in.
  343.    For an archive member target of the form `ARCHIVE(MEMBER)', the
  344. following algorithm is run twice, first using the entire target name T,
  345. and second using `(MEMBER)' as the target T if the first run found no
  346. rule.
  347.   1. Split T into a directory part, called D, and the rest, called N.
  348.      For example, if T is `src/foo.o', then D is `src/' and N is
  349.      `foo.o'.
  350.   2. Make a list of all the pattern rules one of whose targets matches
  351.      T or N.  If the target pattern contains a slash, it is matched
  352.      against T; otherwise, against N.
  353.   3. If any rule in that list is *not* a match-anything rule, then
  354.      remove all nonterminal match-anything rules from the list.
  355.   4. Remove from the list all rules with no commands.
  356.   5. For each pattern rule in the list:
  357.        a. Find the stem S, which is the nonempty part of T or N matched
  358.           by the `%' in the target pattern.
  359.        b. Compute the dependency names by substituting S for `%'; if
  360.           the target pattern does not contain a slash, append D to the
  361.           front of each dependency name.
  362.        c. Test whether all the dependencies exist or ought to exist.
  363.           (If a file name is mentioned in the makefile as a target or
  364.           as an explicit dependency, then we say it ought to exist.)
  365.           If all dependencies exist or ought to exist, or there are no
  366.           dependencies, then this rule applies.
  367.   6. If no pattern rule has been found so far, try harder.  For each
  368.      pattern rule in the list:
  369.        a. If the rule is terminal, ignore it and go on to the next rule.
  370.        b. Compute the dependency names as before.
  371.        c. Test whether all the dependencies exist or ought to exist.
  372.        d. For each dependency that does not exist, follow this algorithm
  373.           recursively to see if the dependency can be made by an
  374.           implicit rule.
  375.        e. If all dependencies exist, ought to exist, or can be made by
  376.           implicit rules, then this rule applies.
  377.   7. If no implicit rule applies, the rule for `.DEFAULT', if any,
  378.      applies.  In that case, give T the same commands that `.DEFAULT'
  379.      has.  Otherwise, there are no commands for T.
  380.    Once a rule that applies has been found, for each target pattern of
  381. the rule other than the one that matched T or N, the `%' in the pattern
  382. is replaced with S and the resultant file name is stored until the
  383. commands to remake the target file T are executed.  After these
  384. commands are executed, each of these stored file names are entered into
  385. the data base and marked as having been updated and having the same
  386. update status as the file T.
  387.    When the commands of a pattern rule are executed for T, the automatic
  388. variables are set corresponding to the target and dependencies.  *Note
  389. Automatic Variables: Automatic.
  390. File: make.info,  Node: Archives,  Next: Features,  Prev: Implicit Rules,  Up: Top
  391. Using `make' to Update Archive Files
  392. ************************************
  393.    "Archive files" are files containing named subfiles called
  394. "members"; they are maintained with the program `ar' and their main use
  395. is as subroutine libraries for linking.
  396. * Menu:
  397. * Archive Members::             Archive members as targets.
  398. * Archive Update::              The implicit rule for archive member targets.
  399. * Archive Pitfalls::            Dangers to watch out for when using archives.
  400. * Archive Suffix Rules::        You can write a special kind of suffix rule
  401.                                   for updating archives.
  402. File: make.info,  Node: Archive Members,  Next: Archive Update,  Up: Archives
  403. Archive Members as Targets
  404. ==========================
  405.    An individual member of an archive file can be used as a target or
  406. dependency in `make'.  You specify the member named MEMBER in archive
  407. file ARCHIVE as follows:
  408.      ARCHIVE(MEMBER)
  409. This construct is available only in targets and dependencies, not in
  410. commands!  Most programs that you might use in commands do not support
  411. this syntax and cannot act directly on archive members.  Only `ar' and
  412. other programs specifically designed to operate on archives can do so.
  413. Therefore, valid commands to update an archive member target probably
  414. must use `ar'.  For example, this rule says to create a member `hack.o'
  415. in archive `foolib' by copying the file `hack.o':
  416.      foolib(hack.o) : hack.o
  417.              ar cr foolib hack.o
  418.    In fact, nearly all archive member targets are updated in just this
  419. way and there is an implicit rule to do it for you.  *Note:* The `c'
  420. flag to `ar' is required if the archive file does not already exist.
  421.    To specify several members in the same archive, you can write all the
  422. member names together between the parentheses.  For example:
  423.      foolib(hack.o kludge.o)
  424. is equivalent to:
  425.      foolib(hack.o) foolib(kludge.o)
  426.    You can also use shell-style wildcards in an archive member
  427. reference.  *Note Using Wildcard Characters in File Names: Wildcards.
  428. For example, `foolib(*.o)' expands to all existing members of the
  429. `foolib' archive whose names end in `.o'; perhaps `foolib(hack.o)
  430. foolib(kludge.o)'.
  431. File: make.info,  Node: Archive Update,  Next: Archive Pitfalls,  Prev: Archive Members,  Up: Archives
  432. Implicit Rule for Archive Member Targets
  433. ========================================
  434.    Recall that a target that looks like `A(M)' stands for the member
  435. named M in the archive file A.
  436.    When `make' looks for an implicit rule for such a target, as a
  437. special feature it considers implicit rules that match `(M)', as well as
  438. those that match the actual target `A(M)'.
  439.    This causes one special rule whose target is `(%)' to match.  This
  440. rule updates the target `A(M)' by copying the file M into the archive.
  441. For example, it will update the archive member target `foo.a(bar.o)' by
  442. copying the *file* `bar.o' into the archive `foo.a' as a *member* named
  443. `bar.o'.
  444.    When this rule is chained with others, the result is very powerful.
  445. Thus, `make "foo.a(bar.o)"' (the quotes are needed to protect the `('
  446. and `)' from being interpreted specially by the shell) in the presence
  447. of a file `bar.c' is enough to cause the following commands to be run,
  448. even without a makefile:
  449.      cc -c bar.c -o bar.o
  450.      ar r foo.a bar.o
  451.      rm -f bar.o
  452. Here `make' has envisioned the file `bar.o' as an intermediate file.
  453. *Note Chains of Implicit Rules: Chained Rules.
  454.    Implicit rules such as this one are written using the automatic
  455. variable `$%'.  *Note Automatic Variables: Automatic.
  456.    An archive member name in an archive cannot contain a directory
  457. name, but it may be useful in a makefile to pretend that it does.  If
  458. you write an archive member target `foo.a(dir/file.o)', `make' will
  459. perform automatic updating with this command:
  460.      ar r foo.a dir/file.o
  461. which has the effect of copying the file `dir/file.o' into a member
  462. named `file.o'.  In connection with such usage, the automatic variables
  463. `%D' and `%F' may be useful.
  464. * Menu:
  465. * Archive Symbols::             How to update archive symbol directories.
  466. File: make.info,  Node: Archive Symbols,  Up: Archive Update
  467. Updating Archive Symbol Directories
  468. -----------------------------------
  469.    An archive file that is used as a library usually contains a special
  470. member named `__.SYMDEF' that contains a directory of the external
  471. symbol names defined by all the other members.  After you update any
  472. other members, you need to update `__.SYMDEF' so that it will summarize
  473. the other members properly.  This is done by running the `ranlib'
  474. program:
  475.      ranlib ARCHIVEFILE
  476.    Normally you would put this command in the rule for the archive file,
  477. and make all the members of the archive file dependencies of that rule.
  478. For example,
  479.      libfoo.a: libfoo.a(x.o) libfoo.a(y.o) ...
  480.              ranlib libfoo.a
  481. The effect of this is to update archive members `x.o', `y.o', etc., and
  482. then update the symbol directory member `__.SYMDEF' by running
  483. `ranlib'.  The rules for updating the members are not shown here; most
  484. likely you can omit them and use the implicit rule which copies files
  485. into the archive, as described in the preceding section.
  486.    This is not necessary when using the GNU `ar' program, which updates
  487. the `__.SYMDEF' member automatically.
  488. File: make.info,  Node: Archive Pitfalls,  Next: Archive Suffix Rules,  Prev: Archive Update,  Up: Archives
  489. Dangers When Using Archives
  490. ===========================
  491.    It is important to be careful when using parallel execution (the
  492. `-j' switch; *note Parallel Execution: Parallel.) and archives.  If
  493. multiple `ar' commands run at the same time on the same archive file,
  494. they will not know about each other and can corrupt the file.
  495.    Possibly a future version of `make' will provide a mechanism to
  496. circumvent this problem by serializing all commands that operate on the
  497. same archive file.  But for the time being, you must either write your
  498. makefiles to avoid this problem in some other way, or not use `-j'.
  499. File: make.info,  Node: Archive Suffix Rules,  Prev: Archive Pitfalls,  Up: Archives
  500. Suffix Rules for Archive Files
  501. ==============================
  502.    You can write a special kind of suffix rule for dealing with archive
  503. files.  *Note Suffix Rules::, for a full explanation of suffix rules.
  504. Archive suffix rules are obsolete in GNU `make', because pattern rules
  505. for archives are a more general mechanism (*note Archive Update::.).
  506. But they are retained for compatibility with other `make's.
  507.    To write a suffix rule for archives, you simply write a suffix rule
  508. using the target suffix `.a' (the usual suffix for archive files).  For
  509. example, here is the old-fashioned suffix rule to update a library
  510. archive from C source files:
  511.      .c.a:
  512.              $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
  513.              $(AR) r $@ $*.o
  514.              $(RM) $*.o
  515. This works just as if you had written the pattern rule:
  516.      (%.o): %.c
  517.              $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
  518.              $(AR) r $@ $*.o
  519.              $(RM) $*.o
  520.    In fact, this is just what `make' does when it sees a suffix rule
  521. with `.a' as the target suffix.  Any double-suffix rule `.X.a' is
  522. converted to a pattern rule with the target pattern `(%.o)' and a
  523. dependency pattern of `%.X'.
  524.    Since you might want to use `.a' as the suffix for some other kind
  525. of file, `make' also converts archive suffix rules to pattern rules in
  526. the normal way (*note Suffix Rules::.).  Thus a double-suffix rule
  527. `.X.a' produces two pattern rules: `(%.o): %.X' and `%.a: %.X'.
  528. File: make.info,  Node: Features,  Next: Missing,  Prev: Archives,  Up: Top
  529. Features of GNU `make'
  530. **********************
  531.    Here is a summary of the features of GNU `make', for comparison with
  532. and credit to other versions of `make'.  We consider the features of
  533. `make' in 4.2 BSD systems as a baseline.  If you are concerned with
  534. writing portable makefiles, you should use only the features of `make'
  535. *not* listed here or in *Note Missing::.
  536.    Many features come from the version of `make' in System V.
  537.    * The `VPATH' variable and its special meaning.  *Note Searching
  538.      Directories for Dependencies: Directory Search.  This feature
  539.      exists in System V `make', but is undocumented.  It is documented
  540.      in 4.3 BSD `make' (which says it mimics System V's `VPATH'
  541.      feature).
  542.    * Included makefiles.  *Note Including Other Makefiles: Include.
  543.      Allowing multiple files to be included with a single directive is
  544.      a GNU extension.
  545.    * Variables are read from and communicated via the environment.
  546.      *Note Variables from the Environment: Environment.
  547.    * Options passed through the variable `MAKEFLAGS' to recursive
  548.      invocations of `make'.  *Note Communicating Options to a
  549.      Sub-`make': Options/Recursion.
  550.    * The automatic variable `$%' is set to the member name in an
  551.      archive reference.  *Note Automatic Variables: Automatic.
  552.    * The automatic variables `$@', `$*', `$<', `$%', and `$?' have
  553.      corresponding forms like `$(@F)' and `$(@D)'.  We have generalized
  554.      this to `$^' as an obvious extension.  *Note Automatic Variables:
  555.      Automatic.
  556.    * Substitution variable references.  *Note Basics of Variable
  557.      References: Reference.
  558.    * The command-line options `-b' and `-m', accepted and ignored.  In
  559.      System V `make', these options actually do something.
  560.    * Execution of recursive commands to run `make' via the variable
  561.      `MAKE' even if `-n', `-q' or `-t' is specified.  *Note Recursive
  562.      Use of `make': Recursion.
  563.    * Support for suffix `.a' in suffix rules.  *Note Archive Suffix
  564.      Rules::.  This feature is obsolete in GNU `make', because the
  565.      general feature of rule chaining (*note Chains of Implicit Rules:
  566.      Chained Rules.) allows one pattern rule for installing members in
  567.      an archive (*note Archive Update::.) to be sufficient.
  568.    * The arrangement of lines and backslash-newline combinations in
  569.      commands is retained when the commands are printed, so they appear
  570.      as they do in the makefile, except for the stripping of initial
  571.      whitespace.
  572.    The following features were inspired by various other versions of
  573. `make'.  In some cases it is unclear exactly which versions inspired
  574. which others.
  575.    * Pattern rules using `%'.  This has been implemented in several
  576.      versions of `make'.  We're not sure who invented it first, but
  577.      it's been spread around a bit.  *Note Defining and Redefining
  578.      Pattern Rules: Pattern Rules.
  579.    * Rule chaining and implicit intermediate files.  This was
  580.      implemented by Stu Feldman in his version of `make' for AT&T
  581.      Eighth Edition Research Unix, and later by Andrew Hume of AT&T
  582.      Bell Labs in his `mk' program (where he terms it "transitive
  583.      closure").  We do not really know if we got this from either of
  584.      them or thought it up ourselves at the same time.  *Note Chains of
  585.      Implicit Rules: Chained Rules.
  586.    * The automatic variable `$^' containing a list of all dependencies
  587.      of the current target.  We did not invent this, but we have no
  588.      idea who did.  *Note Automatic Variables: Automatic.  The
  589.      automatic variable `$+' is a simple extension of `$^'.
  590.    * The "what if" flag (`-W' in GNU `make') was (as far as we know)
  591.      invented by Andrew Hume in `mk'.  *Note Instead of Executing the
  592.      Commands: Instead of Execution.
  593.    * The concept of doing several things at once (parallelism) exists in
  594.      many incarnations of `make' and similar programs, though not in the
  595.      System V or BSD implementations.  *Note Command Execution:
  596.      Execution.
  597.    * Modified variable references using pattern substitution come from
  598.      SunOS 4.  *Note Basics of Variable References: Reference.  This
  599.      functionality was provided in GNU `make' by the `patsubst'
  600.      function before the alternate syntax was implemented for
  601.      compatibility with SunOS 4.  It is not altogether clear who
  602.      inspired whom, since GNU `make' had `patsubst' before SunOS 4 was
  603.      released.
  604.    * The special significance of `+' characters preceding command lines
  605.      (*note Instead of Executing the Commands: Instead of Execution.) is
  606.      mandated by `IEEE Standard 1003.2-1992' (POSIX.2).
  607.    * The `+=' syntax to append to the value of a variable comes from
  608.      SunOS 4 `make'.  *Note Appending More Text to Variables: Appending.
  609.    * The syntax `ARCHIVE(MEM1 MEM2...)' to list multiple members in a
  610.      single archive file comes from SunOS 4 `make'.  *Note Archive
  611.      Members::.
  612.    * The `-include' directive to include makefiles with no error for a
  613.      nonexistent file comes from SunOS 4 `make'.  (But note that SunOS 4
  614.      `make' does not allow multiple makefiles to be specified in one
  615.      `-include' directive.)  The same feature appears with the name
  616.      `sinclude' in SGI `make' and perhaps others.
  617.    The remaining features are inventions new in GNU `make':
  618.    * Use the `-v' or `--version' option to print version and copyright
  619.      information.
  620.    * Use the `-h' or `--help' option to summarize the options to `make'.
  621.    * Simply-expanded variables.  *Note The Two Flavors of Variables:
  622.      Flavors.
  623.    * Pass command-line variable assignments automatically through the
  624.      variable `MAKE' to recursive `make' invocations.  *Note Recursive
  625.      Use of `make': Recursion.
  626.    * Use the `-C' or `--directory' command option to change directory.
  627.      *Note Summary of Options: Options Summary.
  628.    * Make verbatim variable definitions with `define'.  *Note Defining
  629.      Variables Verbatim: Defining.
  630.    * Declare phony targets with the special target `.PHONY'.
  631.      Andrew Hume of AT&T Bell Labs implemented a similar feature with a
  632.      different syntax in his `mk' program.  This seems to be a case of
  633.      parallel discovery.  *Note Phony Targets: Phony Targets.
  634.    * Manipulate text by calling functions.  *Note Functions for
  635.      Transforming Text: Functions.
  636.    * Use the `-o' or `--old-file' option to pretend a file's
  637.      modification-time is old.  *Note Avoiding Recompilation of Some
  638.      Files: Avoiding Compilation.
  639.    * Conditional execution.
  640.      This feature has been implemented numerous times in various
  641.      versions of `make'; it seems a natural extension derived from the
  642.      features of the C preprocessor and similar macro languages and is
  643.      not a revolutionary concept.  *Note Conditional Parts of
  644.      Makefiles: Conditionals.
  645.    * Specify a search path for included makefiles.  *Note Including
  646.      Other Makefiles: Include.
  647.    * Specify extra makefiles to read with an environment variable.
  648.      *Note The Variable `MAKEFILES': MAKEFILES Variable.
  649.    * Strip leading sequences of `./' from file names, so that `./FILE'
  650.      and `FILE' are considered to be the same file.
  651.    * Use a special search method for library dependencies written in the
  652.      form `-lNAME'.  *Note Directory Search for Link Libraries:
  653.      Libraries/Search.
  654.    * Allow suffixes for suffix rules (*note Old-Fashioned Suffix Rules:
  655.      Suffix Rules.) to contain any characters.  In other versions of
  656.      `make', they must begin with `.' and not contain any `/'
  657.      characters.
  658.    * Keep track of the current level of `make' recursion using the
  659.      variable `MAKELEVEL'.  *Note Recursive Use of `make': Recursion.
  660.    * Provide any goals given on the command line in the variable
  661.      `MAKECMDGOALS'.  *Note Arguments to Specify the Goals: Goals.
  662.    * Specify static pattern rules.  *Note Static Pattern Rules: Static
  663.      Pattern.
  664.    * Provide selective `vpath' search.  *Note Searching Directories for
  665.      Dependencies: Directory Search.
  666.    * Provide computed variable references.  *Note Basics of Variable
  667.      References: Reference.
  668.    * Update makefiles.  *Note How Makefiles Are Remade: Remaking
  669.      Makefiles.  System V `make' has a very, very limited form of this
  670.      functionality in that it will check out SCCS files for makefiles.
  671.    * Various new built-in implicit rules.  *Note Catalogue of Implicit
  672.      Rules: Catalogue of Rules.
  673.    * The built-in variable `MAKE_VERSION' gives the version number of
  674.      `make'.
  675. File: make.info,  Node: Missing,  Next: Makefile Conventions,  Prev: Features,  Up: Top
  676. Incompatibilities and Missing Features
  677. **************************************
  678.    The `make' programs in various other systems support a few features
  679. that are not implemented in GNU `make'.  The POSIX.2 standard (`IEEE
  680. Standard 1003.2-1992') which specifies `make' does not require any of
  681. these features.
  682.    * A target of the form `FILE((ENTRY))' stands for a member of
  683.      archive file FILE.  The member is chosen, not by name, but by
  684.      being an object file which defines the linker symbol ENTRY.
  685.      This feature was not put into GNU `make' because of the
  686.      nonmodularity of putting knowledge into `make' of the internal
  687.      format of archive file symbol tables.  *Note Updating Archive
  688.      Symbol Directories: Archive Symbols.
  689.    * Suffixes (used in suffix rules) that end with the character `~'
  690.      have a special meaning to System V `make'; they refer to the SCCS
  691.      file that corresponds to the file one would get without the `~'.
  692.      For example, the suffix rule `.c~.o' would make the file `N.o' from
  693.      the SCCS file `s.N.c'.  For complete coverage, a whole series of
  694.      such suffix rules is required.  *Note Old-Fashioned Suffix Rules:
  695.      Suffix Rules.
  696.      In GNU `make', this entire series of cases is handled by two
  697.      pattern rules for extraction from SCCS, in combination with the
  698.      general feature of rule chaining.  *Note Chains of Implicit Rules:
  699.      Chained Rules.
  700.    * In System V `make', the string `$$@' has the strange meaning that,
  701.      in the dependencies of a rule with multiple targets, it stands for
  702.      the particular target that is being processed.
  703.      This is not defined in GNU `make' because `$$' should always stand
  704.      for an ordinary `$'.
  705.      It is possible to get this functionality through the use of static
  706.      pattern rules (*note Static Pattern Rules: Static Pattern.).  The
  707.      System V `make' rule:
  708.           $(targets): $$@.o lib.a
  709.      can be replaced with the GNU `make' static pattern rule:
  710.           $(targets): %: %.o lib.a
  711.    * In System V and 4.3 BSD `make', files found by `VPATH' search
  712.      (*note Searching Directories for Dependencies: Directory Search.)
  713.      have their names changed inside command strings.  We feel it is
  714.      much cleaner to always use automatic variables and thus make this
  715.      feature obsolete.
  716.    * In some Unix `make's, the automatic variable `$*' appearing in the
  717.      dependencies of a rule has the amazingly strange "feature" of
  718.      expanding to the full name of the *target of that rule*.  We cannot
  719.      imagine what went on in the minds of Unix `make' developers to do
  720.      this; it is utterly inconsistent with the normal definition of
  721.      `$*'.
  722.    * In some Unix `make's, implicit rule search (*note Using Implicit
  723.      Rules: Implicit Rules.) is apparently done for *all* targets, not
  724.      just those without commands.  This means you can do:
  725.           foo.o:
  726.                   cc -c foo.c
  727.      and Unix `make' will intuit that `foo.o' depends on `foo.c'.
  728.      We feel that such usage is broken.  The dependency properties of
  729.      `make' are well-defined (for GNU `make', at least), and doing such
  730.      a thing simply does not fit the model.
  731.    * GNU `make' does not include any built-in implicit rules for
  732.      compiling or preprocessing EFL programs.  If we hear of anyone who
  733.      is using EFL, we will gladly add them.
  734.    * It appears that in SVR4 `make', a suffix rule can be specified with
  735.      no commands, and it is treated as if it had empty commands (*note
  736.      Empty Commands::.).  For example:
  737.           .c.a:
  738.      will override the built-in `.c.a' suffix rule.
  739.      We feel that it is cleaner for a rule without commands to always
  740.      simply add to the dependency list for the target.  The above
  741.      example can be easily rewritten to get the desired behavior in GNU
  742.      `make':
  743.           .c.a: ;
  744.    * Some versions of `make' invoke the shell with the `-e' flag,
  745.      except under `-k' (*note Testing the Compilation of a Program:
  746.      Testing.).  The `-e' flag tells the shell to exit as soon as any
  747.      program it runs returns a nonzero status.  We feel it is cleaner to
  748.      write each shell command line to stand on its own and not require
  749.      this special treatment.
  750. File: make.info,  Node: Makefile Conventions,  Next: Quick Reference,  Prev: Missing,  Up: Top
  751. Makefile Conventions
  752. ********************
  753.    This node describes conventions for writing the Makefiles for GNU
  754. programs.
  755. * Menu:
  756. * Makefile Basics::        General Conventions for Makefiles
  757. * Utilities in Makefiles::    Utilities in Makefiles
  758. * Command Variables::        Variables for Specifying Commands
  759. * Directory Variables::        Variables for Installation Directories
  760. * Standard Targets::        Standard Targets for Users
  761. * Install Command Categories::  Three categories of commands in the `install'
  762.                                   rule: normal, pre-install and post-install.
  763. File: make.info,  Node: Makefile Basics,  Next: Utilities in Makefiles,  Up: Makefile Conventions
  764. General Conventions for Makefiles
  765. =================================
  766.    Every Makefile should contain this line:
  767.      SHELL = /bin/sh
  768. to avoid trouble on systems where the `SHELL' variable might be
  769. inherited from the environment.  (This is never a problem with GNU
  770. `make'.)
  771.    Different `make' programs have incompatible suffix lists and
  772. implicit rules, and this sometimes creates confusion or misbehavior.  So
  773. it is a good idea to set the suffix list explicitly using only the
  774. suffixes you need in the particular Makefile, like this:
  775.      .SUFFIXES:
  776.      .SUFFIXES: .c .o
  777. The first line clears out the suffix list, the second introduces all
  778. suffixes which may be subject to implicit rules in this Makefile.
  779.    Don't assume that `.' is in the path for command execution.  When
  780. you need to run programs that are a part of your package during the
  781. make, please make sure that it uses `./' if the program is built as
  782. part of the make or `$(srcdir)/' if the file is an unchanging part of
  783. the source code.  Without one of these prefixes, the current search
  784. path is used.
  785.    The distinction between `./' (the "build directory") and
  786. `$(srcdir)/' (the "source directory") is important because users can
  787. build in a separate directory using the `--srcdir' option to
  788. `configure'.  A rule of the form:
  789.      foo.1 : foo.man sedscript
  790.              sed -e sedscript foo.man > foo.1
  791. will fail when the build directory is not the source directory, because
  792. `foo.man' and `sedscript' are in the the source directory.
  793.    When using GNU `make', relying on `VPATH' to find the source file
  794. will work in the case where there is a single dependency file, since
  795. the `make' automatic variable `$<' will represent the source file
  796. wherever it is.  (Many versions of `make' set `$<' only in implicit
  797. rules.)  A Makefile target like
  798.      foo.o : bar.c
  799.              $(CC) -I. -I$(srcdir) $(CFLAGS) -c bar.c -o foo.o
  800. should instead be written as
  801.      foo.o : bar.c
  802.              $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@
  803. in order to allow `VPATH' to work correctly.  When the target has
  804. multiple dependencies, using an explicit `$(srcdir)' is the easiest way
  805. to make the rule work well.  For example, the target above for `foo.1'
  806. is best written as:
  807.      foo.1 : foo.man sedscript
  808.              sed -e $(srcdir)/sedscript $(srcdir)/foo.man > $@
  809.    GNU distributions usually contain some files which are not source
  810. files--for example, Info files, and the output from Autoconf, Automake,
  811. Bison or Flex.  Since these files normally appear in the source
  812. directory, they should always appear in the source directory, not in the
  813. build directory.  So Makefile rules to update them should put the
  814. updated files in the source directory.
  815.    However, if a file does not appear in the distribution, then the
  816. Makefile should not put it in the source directory, because building a
  817. program in ordinary circumstances should not modify the source directory
  818. in any way.
  819.    Try to make the build and installation targets, at least (and all
  820. their subtargets) work correctly with a parallel `make'.
  821. File: make.info,  Node: Utilities in Makefiles,  Next: Command Variables,  Prev: Makefile Basics,  Up: Makefile Conventions
  822. Utilities in Makefiles
  823. ======================
  824.    Write the Makefile commands (and any shell scripts, such as
  825. `configure') to run in `sh', not in `csh'.  Don't use any special
  826. features of `ksh' or `bash'.
  827.    The `configure' script and the Makefile rules for building and
  828. installation should not use any utilities directly except these:
  829.      cat cmp cp diff echo egrep expr false grep install-info
  830.      ln ls mkdir mv pwd rm rmdir sed sleep sort tar test touch true
  831.    The compression program `gzip' can be used in the `dist' rule.
  832.    Stick to the generally supported options for these programs.  For
  833. example, don't use `mkdir -p', convenient as it may be, because most
  834. systems don't support it.
  835.    It is a good idea to avoid creating symbolic links in makefiles,
  836. since a few systems don't support them.
  837.    The Makefile rules for building and installation can also use
  838. compilers and related programs, but should do so via `make' variables
  839. so that the user can substitute alternatives.  Here are some of the
  840. programs we mean:
  841.      ar bison cc flex install ld ldconfig lex
  842.      make makeinfo ranlib texi2dvi yacc
  843.    Use the following `make' variables to run those programs:
  844.      $(AR) $(BISON) $(CC) $(FLEX) $(INSTALL) $(LD) $(LDCONFIG) $(LEX)
  845.      $(MAKE) $(MAKEINFO) $(RANLIB) $(TEXI2DVI) $(YACC)
  846.    When you use `ranlib' or `ldconfig', you should make sure nothing
  847. bad happens if the system does not have the program in question.
  848. Arrange to ignore an error from that command, and print a message before
  849. the command to tell the user that failure of this command does not mean
  850. a problem.  (The Autoconf `AC_PROG_RANLIB' macro can help with this.)
  851.    If you use symbolic links, you should implement a fallback for
  852. systems that don't have symbolic links.
  853.    Additional utilities that can be used via Make variables are:
  854.      chgrp chmod chown mknod
  855.    It is ok to use other utilities in Makefile portions (or scripts)
  856. intended only for particular systems where you know those utilities
  857. exist.
  858.